home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacTech 1 to 12
/
MacTech-vol-1-12.toast
/
Tools
/
Alpha 6.51b13 ƒ
/
Tcl
/
UserCode
/
setAwkMode.tcl
< prev
next >
Wrap
Text File
|
1996-08-15
|
1KB
|
42 lines
# FILE: setAwkMode.tcl
#
# LAST UPDATE: 01/07/93 8:33:33 AM
#
# This file contains the following TCL procedure(s):
#
# setAwkMode -- used with changeMode & AWK programming language
# COPYRIGHT:
#
# Copyright © 1993 by David C. Black
# All rights reserved.
#
# Redistribution and use in source and binary forms are permitted
# provided that the above copyright notice and this paragraph are
# duplicated in all such forms and that any documentation,
# advertising materials, and other materials related to such
# distribution and use acknowledge that the software was developed
# by David C. Black.
#
# THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
#
################################################################################
# Awk programming mode
proc setAwkMode {} {
changeMode "Awk"
uplevel #0 {
set elecLBrace 0
set elecRBrace 0
set electricSemi 0
set wordWrap 0
set funcTitle "Func"
set funcExpr {^#?:?function *([a-zA-Z0-9_]*)\(}
set funcPar 1
set sortedIsDefault 0
set prefixString "# "
}
}